home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 December
/
2004-12 CHIP.iso
/
Dom i biuro
/
Crimson Editor 3.70
/
cedt370r.exe
/
template
/
hello world program.src
< prev
Wrap
Text File
|
2003-06-03
|
305b
|
23 lines
; BASIC TEMPLATE FILE FOR Z80 ASSEMBLY
;=======================================
ORG 00100H
DSEG
HELLO_STRING:
DB 'HELLO WORD'
DB 13,10,0
;=======================================
CSEG
LD DE,HELLO_STRING
CALL PRINTF
RET
END
;=======================================